home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Tool Chest / Development Tools & Languages / • Other Platforms / PCCTS / support / rexpr / makefile next >
Encoding:
Makefile  |  1994-09-14  |  294 b   |  20 lines  |  [TEXT/MPS ]

  1. BAG=../../bin/bag
  2. SRC=test.c rexpr.c
  3. OBJ=test.o rexpr.o
  4. CFLAGS = -g
  5.  
  6. test: $(OBJ) $(SRC)
  7.     cc -g -o texpr $(OBJ)
  8.  
  9. shar:
  10.     shar makefile test.c rexpr.c rexpr.h > rexpr.shar
  11.  
  12. archive:
  13.     $(BAG) makefile test.c rexpr.c rexpr.h > rexpr.bag
  14.  
  15. clean:
  16.     rm -rf *.o core texpr
  17.  
  18. scrub:
  19.     rm -rf *.o core texpr
  20.